From 316aafd641d561e1fbd491cf39817db74ed533e8 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 25 May 1993 02:03:52 +0000 Subject: [PATCH] (Info-suffix-list): Fix duplicate .z to .info.z. --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/info.el b/lisp/info.el index 672043a0fa3..e1b4766b679 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -77,7 +77,7 @@ Marker points nowhere if file has no tag table.") (".z" . "gunzip") (".info.Z" . "uncompress") (".info.Y" . "unyabba") - (".z" . "gunzip")) + (".info.z" . "gunzip")) "List of file name suffixes and associated decoding commands. Each entry should be (SUFFIX . STRING); the file is given to the command as standard input. If STRING is nil, no decoding is done.") -- 2.30.2